home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-24 | 435 b | 26 lines | [TEXT/KAHL] |
- //
- // File: MyHideWindow.c
- // Project: IsNative.π
- // Author: Glenn L. Austin
- // Symantec Corporation
- //
- #include <Traps.h>
- #include "IsNative.h"
-
- WindowPtr aboutWindow;
- void* oldHideWindowTrap;
-
- pascal void MyHideWindow(WindowPtr theWindow)
- {
- long oldA4 = SetA4World();
-
- if (theWindow == aboutWindow)
- {
- SetToolTrapAddress(oldHideWindowTrap, _HideWindow);
- StopAnimation();
- aboutWindow = nil;
- }
-
- RestoreA4World(oldA4);
- }
-